home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 8
/
FM Towns Free Software Collection 8.iso
/
t_os
/
gpen32k
/
source
/
lib
/
osrc
/
oview.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-06-01
|
225 b
|
16 lines
#include <EGB.H>
extern char work[];
void view( int x1, int y1, int x2, int y2 )
{
char pa[64];
WORD(pa ) = x1;
WORD(pa + 2) = y1;
WORD(pa + 4) = x2;
WORD(pa + 6) = y2;
EGB_viewport( work, pa );
}